home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / mgrdemos.zoo / demo / sh / makefile < prev    next >
Encoding:
Makefile  |  1989-01-24  |  931 b   |  37 lines

  1. #                        Copyright (c) 1987 Bellcore
  2. #                            All Rights Reserved
  3. #       Permission is granted to copy or use this program, EXCEPT that it
  4. #       may not be sold for profit, the copyright notice must be reproduced
  5. #       on copies, and credit should be given to Bellcore where it is due.
  6. #       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7.  
  8. #    $Header: Makefile,v 4.3 88/08/12 07:42:55 sau Exp $
  9. #    $Source: /tmp/mgrsrc/demo/sh/RCS/Makefile,v $
  10.  
  11. # makefile for shell files 
  12.  
  13. INSROOT=/usr/mgr
  14. INSDIR=$(INSROOT)/bin
  15.  
  16. ALL = bury font loadfont menu more shape showfont square vi c_menu color cursor
  17.  
  18. START = .
  19.  
  20. all small fast:    $(ALL)
  21.  
  22.  
  23. install smallinstall:    $(ALL) $(INSDIR)
  24.         cd $(INSDIR);  rm -f $(ALL)
  25.         cp $(ALL) $(INSDIR)
  26.         cd $(INSDIR);  chmod 755 $(ALL)
  27.  
  28. $(INSDIR):
  29.         mkdir $@
  30.  
  31. clean clobber:
  32.  
  33. list:
  34.     @for i in $(ALL) Makefile; do \
  35.         echo "$(START)/$$i"; \
  36.     done    
  37.